home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 3 / Amiga Format CD03 (1996-07-04)(Future Publishing)(GB)(Track 1 of 6)[!][issue 1996-08].iso / comms / netsoftware / archie38_1.lha / archie-1.4 / vms / types.h < prev    next >
C/C++ Source or Header  |  1995-01-04  |  467b  |  27 lines

  1. /* sys/types.h */
  2. #ifndef _types_
  3. #define _types_
  4.  
  5. #ifndef __GNUC__
  6. # include <sys$library:stddef.h>
  7. #endif /* not Gnu C */
  8.  
  9. typedef unsigned char u_char;
  10. typedef unsigned short u_short;
  11. typedef unsigned int u_int;
  12. typedef unsigned long u_long;
  13.  
  14. typedef long daddr_t;
  15. typedef char *caddr_t;
  16.  
  17. #include <sys$library:types.h>
  18.  
  19. typedef unsigned short ino_t;
  20. typedef char *dev_t;
  21. typedef unsigned int off_t;
  22. typedef long key_t;
  23.  
  24. #include "[.vms]fd.h"
  25.  
  26. #endif /* _types */
  27.